home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 26 / AACD 26.iso / AACD / Online / Qpopper / pop_rset.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-01  |  1.1 KB  |  42 lines

  1. /*
  2.  * Copyright (c) 1989 Regents of the University of California.
  3.  * All rights reserved.  The Berkeley software License Agreement
  4.  * specifies the terms and conditions for redistribution.
  5.  */
  6.  
  7. #ifndef lint
  8. static char copyright[] = "Copyright (c) 1990 Regents of the University of California.\nAll rights reserved.\n";
  9. static char SccsId[] = "@(#)@(#)pop_rset.c    2.1  2.1 3/18/91";
  10. #endif not lint
  11.  
  12. #include <stdio.h>
  13. #include <sys/types.h>
  14. #include "popper.h"
  15.  
  16. /* 
  17.  *  rset:   Unflag all messages flagged for deletion in a POP maildrop
  18.  */
  19.  
  20. int pop_rset (p)
  21. POP     *   p;
  22. {
  23.     MsgInfoList     *   mp;         /*  Pointer to the message info list */
  24.     register int        i;
  25.  
  26.     /*  Unmark all the messages */
  27.     for (i = p->msg_count, mp = p->mlp; i > 0; i--, mp++) {
  28.         mp->del_flag = FALSE; 
  29.         mp->retr_flag = mp->orig_retr_state; 
  30.     }
  31.     
  32.     /*  Reset the messages-deleted and bytes-deleted counters */
  33.     p->msgs_deleted = 0;
  34.     p->bytes_deleted = 0;
  35.     
  36.     /*  Reset the last-message-access flag */
  37.     p->last_msg = 0;
  38.  
  39.     return (pop_msg(p,POP_SUCCESS,"Maildrop has %u messages (%u octets)",
  40.         p->msg_count,p->drop_size));
  41. }
  42.